$(document).ready(function(){
	$('.switch').click(function(event){
		var box = $(this).parent().find('.slide');
		
		if ($(this).is('.up')) {
			pY = event.pageY - 280;
			box.css('top', pY + 'px');
		}
		box.slideDown();
		$(this).addClass('hov');
	});
	
	$('.slide .top').click(function(){
		$(this).parent().slideUp();
		$(this).parent().parent().find('.switch').removeClass('hov');
	});
	
	$('.scontent h2').click(function(){
		$(this).parent().find('p, div').slideToggle('fast', function(){
			if ($(this).is(':hidden')) {
				$(this).parent().find('h2').removeClass('hov');
			} else {
				$(this).parent().find('h2').addClass('hov');
			}
		});
	});
	
	$("a.fncbox").fancybox();
});

$(document).ready(function(){
	var wHeight = $(window).height();
	if (wHeight > $('#main').height()) {
		$('#main, .main').css('min-height', wHeight);
	}
});
