$(document).ready(function(){					   
$("a.home").click(function(){
$("#concept, #specs, #gallery, #contact, #video").fadeOut("slow");
$("#home").fadeIn("slow");
});
$("a.concept").click(function(){
$("#home, #specs, #gallery, #contact, #video").fadeOut("slow");
$("#concept").fadeIn("slow");
});
$("a.specs").click(function(){
$("#home, #concept, #gallery, #contact, #video").fadeOut("slow");
$("#specs").fadeIn("slow");
});
$("a.gallery").click(function(){
$("#home, #concept, #specs, #contact, #video").fadeOut("slow");
$("#gallery").fadeIn("slow");
});
$("a.contact").click(function(){
$("#home, #concept, #specs, #gallery, #video").fadeOut("slow");
$("#contact").fadeIn("slow");
});
});
