jQuery(document).ready(function($){

	/** Slide toggle */
	$(".slide-toggle .toggling").hover(
		function(){$(this).addClass("pointer");},
		function(){$(this).removeClass("pointer");}
	);

	$(".slide-toggle .toggling").click(function(){
		$(this).next().slideToggle("fast");
	});

	$(".slide-toggle .toggling").toggle(
		function(){$(this).addClass("expanded");},
		function(){$(this).removeClass("expanded");}
	);


	/** Change products per page */
	$(".inp_nb_of_products_per_page").change(function(){
		$("#sort_settings_form").submit();
	});


	/** Open link in new Window */
	$("a[rel='openWindow']").click(function() {
		window.open($(this).attr("href"));

		return false;
	});
});