//$.noConflict();
jQuery(document).ready(function($) {

	$('.imagegallery a').mouseover(function(){
		$('.imagegallerypreview').html('<a href="'+ $(this).attr('href') +'"><img src="'+ $(this).attr('rel') +'" /></a><p>'+ $(this).attr('rev') +'</p>');
	});
	
	$('#text').waypoint(function(event, direction) {
		offset: '-100%'
	}).find('.imagegallerypreview').waypoint(function(event, direction) {
		$(this).parent().toggleClass('sticky', direction === "down");
		event.stopPropagation();
	});
	
	//page-template-product-php
	$('#sidebar a', '.page-template-product-php, .page-template-product-main-page-php, .page-template-product-group-php').click(function(){
		if($(this).parents('ul').length < 3)
			return false;
	})
});
