jQuery(function($)
{
	setNavigationDropDown();
	//set product over
	jQuery('.default_product_display').hover(function()
	{
		jQuery(this).find('.prodtitle a').css('color', '#75BF0D');
		jQuery(this).find('.imagecol').addClass('over_product');
	},
	function()
	{
		jQuery(this).find('.prodtitle a').css('color', '#ffffff');
		jQuery(this).find('.imagecol').removeClass('over_product');
	});
	jQuery('#featured_gallery, #featured_gallery_controls span').bind('mouseenter mouseleave', function(event)
	{
		if(event.type == 'mouseenter')
			jQuery('#featured_gallery_controls span').css('display', 'block');
		else
			jQuery('#featured_gallery_controls span').css('display', 'none');
	});
	$('.with_scrollbar').tinyscrollbar();
});
function setNavigationDropDown()
{
	jQuery('#navigation ul li').hover(function()
	{
		jQuery(this).find('ul:first').slideDown();
	},
	function()
	{
		jQuery(this).find('ul:first').slideUp();
	});
}

