jQuery(document).ready(function(){	
								
//	$("#imgmainContainer p.topStrapline").css("text-shadow","2px 2px 2px #000");
//	$("#imgmainContainer p.bottomStrapline").css("text-shadow","2px 2px 2px #000");
//	$("#imgmainContainer p.bottomStrapline span").css("text-shadow","none");
	
	//CSS3 Gradient BG
	
	$("#form .steps").css("background","-webkit-gradient(linear,left bottom,left top,color-stop(0.31, rgb(250,250,250)),color-stop(0.58, rgb(240,240,240)),color-stop(0.83, rgb(250,250,250))");
	
	$("#form .steps").css("background","-moz-linear-gradient(center bottom,rgb(250,250,250) 31%,rgb(240,240,240) 58%,rgb(250,250,250) 83%)");
	
	$("#form .steps").css("border-radius","10px"); 
	$("#form .steps").css("-webkit-border-radius","10px"); 
	$("#form .steps").css("-moz-border-radius","10px 10px 10px 10px");
	
	$("#sidebar #callback").css("border-radius","10px"); 
	$("#sidebar #callback").css("-webkit-border-radius","10px"); 
	$("#sidebar #callback").css("-moz-border-radius","10px 10px 10px 10px");

// Date Picker
$(function() {
	$( "#callback input.date-field" ).datepicker({dateFormat: 'dd-mm-yy'});
});

//slideDown 

$("a.skipSizing").click(function() {
	$("#sizingGuide").stop(true, true).slideToggle('medium');
	 });


	
							
});
