function cl(msg){
	if(typeof(console) != 'undefined'){
		console.log(msg);
	}
}

var $j = jQuery.noConflict(); 

$j(document).ready(function($){
	
	
	// Product images
	
	$('.products-grid td a').hover(
		function(){
			$(this).find('.product-info').slideDown(150,'easeOutSine')
		},
		function(){
			$(this).find('.product-info').slideUp(150)
		}
	)
	
	// $j('.block.block-layered-nav ul > li').hover(
	// 	function(){
	// 		$(this).find('ul').show();
	// 	},
	// 	function(){
	// 		$(this).find('ul').hide();
	// 	}
	// )
	
	$j(document).ready(function() {
		$j('.slideshow').cycle({
			fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		});
	});

	$j("button span").wrap("<span class=\"glass\"></span>");

});