Current File : /home/aventura/www/web/js/style-switcher/style-switcher.js
$(document).ready(function() {

	$.ajax({
	    url: "style-switcher.html",
	    success: function (data) { $('body').append(data); },
	    dataType: 'html'
	});

});