// JavaScript Document


jQuery(document).ready(function() {
								
$('#bigimageslids').cycle({ 
    fx:     'fade', 
    speed:  'slow', 
    timeout: 70000000000000,
	 pager:  '#internalpager',
	 cleartype: true
	 

	
});

//$('#nav li').hover(
//  function () {
//	  
//     $(this).find("ul").animate({height:'87px', paddingTop:'20px'},{queue:false,duration:400});
//	 
//  }, 
//  function () {
//    $(this).find("ul").animate({height:'0px', paddingTop:'0px'},{queue:false,duration:50000});
//  }
//  ).stop();



$('#nav li').click(
  function () {
  
  $('#nav li ul').animate({height:'0', paddingTop:'0'});
	  
     $(this).find("ul").animate({height:'87px', paddingTop:'20px'});
	 
  }
  
  ).stop();
  

$('#bigimageslids a').hover(
  function () {
	  
     $(this).find("span.slide").animate({height:'440px',width:'293px', paddingTop:'20px',backgroundColor:'#000000',color:'#ffff'},{queue:false,duration:400});
	 
  }, 
  function () {
    $(this).find("span.slide").animate({height:'0px', paddingTop:'0px', width:'293px',backgroundColor:'#000000',color:'#ffffff'},{queue:false,duration:500});
  }
  ).stop();


$('#products li').hover(
  function () {
	  
     $(this).find("span").animate({height:'48px', paddingTop:'10px'},{queue:false,duration:400});
	 
  }, 
  function () {
    $(this).find("span").animate({height:'0px', paddingTop:'0px'},{queue:false,duration:500});
  }
  ).stop();
  
  
  });

//$('#products').cycle({ 
//    fx:     'scrollLeft', 
//    speed:  'slow', 
//    timeout: 0,
//    pager: '#pages',
//	next:   '.next a', 
//    prev:   '.prev a',
//	 cleartype:  1
//	});
//	
//	
//		$("#products a").fancybox({
//				'zoomSpeedIn'		:	500,
//				'zoomSpeedOut'		:	500
//			});

