/*

	Site wide javascript file
	This is included on every page

*/

/*
	QuickView Hover events
*/

//check if we have any elements on the page that have the .product-image class pschmidt tenbones- disabled
if(0 && jQuery('.product-image').length ){

	//Attach the events
	jQuery('.product-image').mouseenter(function(){ jQuery(this).children('a').css('display','block'); });
	jQuery('.product-image').mouseleave(function(){ jQuery(this).children('a').css('display','none'); });
	
}

//Register Buttons
/*
jQuery(function(){
	jQuery('#registerlink').click(function(e){
			e.preventDefault();
			jQuery('#registerdialog').modal();	
		}	
	);
	jQuery('#registerbutton').click(function(e){
			e.preventDefault();
			jQuery('#registerdialog').modal();	
		}	
	);

});
*/

//QuickView popup box
//jQuery(function(){
//	jQuery(".quickview a").fancybox({
//		'width'				: '75%',
//		'height'			: '75%',
//		'autoScale'			: false,
//		'transitionIn'		: 'none',
//		'transitionOut'		: 'none',
//		'type'				: 'iframe'
//	});
//});
