 $(document).ready(function() {
	
	$( "#tabs" ).tabs();	
	
	jQuery('.carousel').jcarousel({
        scroll: 2
    });
	
	$(".gallery .main_image a").fancybox();
	
	$(".gallery .thumbs a").click(function () {
		 $(".gallery .thumbs a").removeClass("active");									
		 $(this).addClass("active");									
		 var ind = $('.gallery .thumbs a').index(this);
		 $(".gallery .main_image a").hide();
		 $($(".gallery .main_image a").get(ind)).show();
		 return false;
	});
	
	$(".menu .dropdown").mouseover(function () {
		$(this).parent("li").addClass("hover");									
	});
	$(".menu .dropdown").mouseleave(function () {
		$(this).parent("li").removeClass("hover");									
	});
		
	$("p.top a").click(function() {
		var target = $(this).attr("href");
		var bodyelem = $("html,body")		
		if($.browser.safari) bodyelem = $("body")

		bodyelem.animate({
			scrollTop: $(target).offset().top
			}, 1000);
		return false;
	});		
});

