$(document).ready(function(){
	$(".cert_block img").fadeTo("slow", 0.3);
	
	$(".cert_block img").mouseout(function(){
		$(this).fadeTo("slow", 0.3);
	}).mouseover(function(){
		$(this).fadeTo("slow", 1.0);
	});
	
	$(".sideBar_product > li > a").click(function() {
		$(this).parent().find('> ul').slideToggle("slow");
		if ($(this).hasClass("active")) 
		{
			$(this).removeClass("active");
		}
		else
		{
			$(this).addClass("active");
		}
		return false;
	})
	
	$("#menu_education").click(function() {
		$(this).parent().find('> ul').slideToggle("slow");
		if ($(this).hasClass("active")) 
		{
			$(this).removeClass("active");
		}
		else
		{
			$(this).addClass("active");
		}
		return false;
	})
	
	$("a[rel='gallery']").colorbox(); 
	$("a[rel='gallery2']").colorbox();
	
	$("a.panorama").click(function() {
		var href = $(this).attr("href");
		window.open(href, href, 'width=1024,height=768,toolbar=0,location=0,scrollbars=0,status=1');
		return false;
	})
});
