/* --------- JQUERY FUNCTIONS -------------*/
jQuery(document).ready(function() {
			
	 /* --------- CAROUSEL -------------*/			
    jQuery('#mycarousel').jcarousel();
	
	 /* --------- BUTTONS -------------*/	
	 $('button').hover(function() {
      $(this).addClass('hoverme');
    }, function() {
      $(this).removeClass('hoverme');
    });
	
	 /* --------- SUPERFISH DROPDOWN MENUS -------------*/	
	jQuery('ul.sf-menu').superfish();
	
	 /* --------- SUB CATEGORIES -------------*/	
	$('a.pro_category').toggle(function()
			{
				$('.category_list:hidden').slideDown();
				$('.pro_category')[0].blur();
				$(this).addClass('on');
				return false;
			},
			function()
			{
				$('.category_list:visible').slideUp();
				$('.pro_category')[0].blur();
				$(this).removeClass('on');
				return false;
			}
	);
	 
	 /* --------- FANCYBOX GALLERY -------------*/	
	$("a.pro_lightbox").fancybox({ 'overlayShow': true }); 
	
	

});



