// Being nice to other libraries
jQuery.noConflict();

// In here $ is jQuery regardless of what other libraries are used
(function($) {

	init = function() {

		// ProductDetail
        $('.productDetail').hover(
        function(){
        	$(this).children('.moreDetails').fadeIn('slow');
        	
        },
        function(){
        	$(this).children('.moreDetails').fadeOut('slow');
        });
	}

	$(document).ready(init);

})(jQuery);


