$(document).ready(function() {
  $("#rotate").cycle();
  
  //Code below is for a bug found in the dropdown nav for both IE 7 and Webkit Browsers(Safari & Chrome)
  if ($.browser.msie && $.browser.version  == '7.0' || $.browser.webkit){
	$('#nav > li').mouseover(function(){
		var thewidth = $(this).children("div").css('width');
		$(this).children("div").children('span').css('width', thewidth);
  });
  }
});
