// JavaScript Document


jQuery(document).ready(function() {
								
$('#slides').cycle({ 
    fx:     'scrollHorz', 
    speed:  'slow', 
    timeout: 7000,
	next:   '.next a', 
	prev:   '.back a',
	cleartype: 0,
	cleartypeNoBg: true

	});




$('.mainnav li').hover(
  function () {
	  
     $(this).find("ul").animate({ width:'165px'},{queue:false,duration:400});
	 
  }, 
  function () {
    $(this).find("ul").animate({width:'0px'},{queue:false,duration:500});
  }
  ).stop();
});

