	$(document).ready(function() {
	$("a#example5").fancybox();
			$("#various3").fancybox({
				'width'				: '45%',
				'height'			: '45%',
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe'
			});
	});
$(document).ready(function() {									
	$("a[name^='faq-']").each(function() {
		$(this).click(function() {
			if( $("#" + this.name).is(':hidden') ) {
				$("#" + this.name).fadeIn('slow');
			} else {
				$("#" + this.name).fadeOut('slow');
			}			
			return false;
		});
	});
});
			function selectMake(str){
				if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari
			  		xmlhttp=new XMLHttpRequest();
				}	else {// code for IE6, IE5
					xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
			  	}
				xmlhttp.onreadystatechange=function(){
			  		if (xmlhttp.readyState==4 && xmlhttp.status==200){
			    		document.getElementById("s2_model").innerHTML=xmlhttp.responseText;
				    }
			  	}
				xmlhttp.open("GET","ajax.php?make="+str,true);
				xmlhttp.send();
			}
			
			function selectModel(str){
				if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari
		  		xmlhttp=new XMLHttpRequest();
				}	else {// code for IE6, IE5
		  		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
		  	}
				xmlhttp.onreadystatechange=function(){
		  		if (xmlhttp.readyState==4 && xmlhttp.status==200){
		    		document.getElementById("s3_fine").innerHTML=xmlhttp.responseText;
			    }
		  	}
				xmlhttp.open("GET","ajax.php?model="+str,true);
				xmlhttp.send();
			}
