var url = "http://"+document.domain+"/";
jQuery(document).ready(function() {
	$("a[rel='lightbox-item']").colorbox({transition:"fade"});
	
	$(".slide_group_head").bind('click', function(){
		//showHide
		showHide($(".slide_group_body[rel="+$(this).attr("rel")+"]"));
	});
	
	$(".slide_group_body").hide();
	$(".slide_group_body").data('currentState', 'off');
	
	$(".slehide[rel=form]").hide();
	
	$(".swithcer").bind('click', function(){
		if ($(this).hasClass('bold')) {
			
		} else {
			$(".swithcer").removeClass("bold");
			$(".slehide").hide();
			$(".slehide[rel="+$(this).attr("rel")+"]").slideDown("fast");
			$(this).addClass("bold");
		}
	});

});

function showHide(el) {
	if (el.data('currentState') == "on") {
		el.data('currentState', 'off');
		el.slideUp("slow");
		
	}
	else {
		el.data('currentState', 'on');
		el.slideDown("slow");
		
	}
}

