function submitToggle() {
	if ($('#submit').css('display') == 'none') {
		$('#submit').slideDown();
	} else {
		$('#submit').slideUp();
	}
}

function plusToggle(id) {
	if ($('#plus'+id).css('display') == 'none') {
		$('#plus'+id).slideDown();
	} else {
		$('#plus'+id).slideUp();
	}
}

$(document).ready(function() { 

	$('.maintitle').click(function() {
		window.location = "http://www.designhell.com";
	});

	$('img[hover]').hover(function() {  // image hover
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    }, function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    });

	$('.piss').hover(function() {  
		$('.monkey').attr('src', 'images/angrybs2.png');
    }, function() {
        $('.monkey').attr('src', 'images/angrybs1.png');
    });

});