$(document).ready(function(){
    $(".specifications").click(function () {
      	$("#specs").toggle("slow");
    });
    $(".faq").click(function (){
    	$("#faqs").toggle("slow");
    })

/*    $("li.accessories").mouseover(function(){
		$(this).css({"background" : 'transparent url(/skin1/images/menu/coming_soon.gif) top left no-repeat'});
    });
    $("li.accessories").mouseout(function(){
		$(this).css({"background" : 'transparent url(/skin1/images/menu/accessories.gif) top left no-repeat'});
    });

    $(".accessories").click(function(){
    	return false;
    });
*/
    $(".scrollspec").click(function() {
    	$("#specs").show();
    	$("#aspecs").localScroll();
    });
    $(".scrollfaq").click(function() {
    	$("#faqs").show();
    	$("#afaqs").localScroll();
    });

});