jQuery.noConflict();
jQuery(document).ready(function(){
  jQuery('#slideshow').after('<div class="pagination">');
  jQuery('#slideshow').cycle({
  	  fx:'scrollLeft', 
	  speed:1000, 
	  timeout: 6000,
	  pager:'.pagination',
	  next: '#next',
	  prev: '#prev',
	  pause: 1,
	  cleartype: true,
	  cleartypeNoBg: true				  
  });
  var pageName = window.location.pathname;
  if(pageName == '/default.aspx' || pageName == '/'){
	jQuery('#content-wrapper').addClass('home');  
  }else if(pageName == '/InterconnectGuarantee.aspx' || pageName == '/ProductSearchResults.aspx' || pageName == '/productsearchresults.aspx'|| pageName == '/Ordering.aspx'){
	jQuery('#content-wrapper').addClass('interior');  
  };
//  if(pageName == '/About.aspx'){
//	jQuery('#content-wrapper').css('height', '110%');
//  }else if(pageName == '/FeaturesBenefits.aspx'){
//	jQuery('#content-wrapper').css('height', '175%');  
//  };

  jQuery('#technical-specs tr:first-child').addClass('table-head');
  jQuery('#technical-specs tr:odd').addClass('stripes');
  jQuery('ul.sf-menu li:last-child a').css('border-right', 'none');
});
