/* Common JQuery Scripts for KTL Motorcycles */
/* Last Revised: 11-Dec-10 */

/* Run JQuery Scripts  */
$(function($) {
	
	/* JQuery Button Rollovers: Preload Hover Images */
	$('img.rollover').preload({
		find: 'menu',
		replace: 'hover'
	});
	
  /* JQuery Button Rollovers: Handle Hover Event */
  $("img.rollover").hover(
	  function() { this.src = this.src.replace("menu","hover"); },
	  function() { this.src = this.src.replace("hover","menu"); }
  );
});
