/* Author: Cahoona

*/

$(function(){
	
	var $smashedit = 0;

	
	$(window).resize(function() {
		
		if ($(window).width() == 900 && $(window).height() == 600) {
			$smashedit = 1;
			$('.congrats').animate({top: '40px'}, 200);
			$('.cahoona').css({color:'#e9e6d5'});
			$('.cahoona a').css({color:'#babdba'});
		}
		
		if ($smashedit == 0) {
			var $windowx = $(window).width();
			var $windowy = $(window).height();
		
			$distfromx = 900 - $windowx;
			$distfromy = 600 - $windowy;
		
			$distfromcomplete = Math.sqrt(Math.pow($distfromx,2) + Math.pow($distfromy,2));
		
			$percentcomplete = 1 / ($distfromcomplete/2);
		
			$('.bg_painting').css({opacity:$percentcomplete});
		};
	
		
	});
});

$(function() {
	$('.content').slideDown('slow', "easeOutBounce",  function() {});
	// $('.box-<?php echo $id; ?>').animate({"opacity": "1"}, 1000);
	return false
});
