// Scripts for the motorcycle section

// Form watermarks for the make/model inputs
$().ready(function() {
	$("#make").watermark("Make (e.g. Ducati)");
	$("#model").watermark("Model (e.g. GT 1000)");
	
	$("form.my-bike :input").bind("focus", function() {							
		$(this).addClass("focus");				  
  	});
	
	
	$(".bike-info-img-right").parent('a').fancybox({
		'titlePosition' :   'over',
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});
	
	$(".racing-team-image a").fancybox({
		'titlePosition' :   'over',
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});
	
	
	
});

