// JavaScript Document

$(document).ready(function(){

	if ($(".hider-1").length){
		$(".hider-1 span").click(function(){
			$(this).parent().find("div").css({height: "auto"});
			return false;
		});
	};
	if ($(".hider-2").length){
		$(".hider-2 span").click(function(){
			$(this).parent().find("div").css({height: "auto"});
			return false;
		});
	};
	
	$("a[rel='popup']").colorbox();
	
});

window.onresize = function() {
	
	
};