// Initializes all content when the site loads
function init() {

	// Menu rollover functonality
	$('#menubuttons div').hover(function() {
		$(this).css({ 'cursor' : 'pointer' });
		$(this).stop().animate({backgroundPosition: '0px -28px'}, 300);
	}, function() {
		$(this).stop().animate({backgroundPosition: '0px 0px'}, 300);
	});
	
	// Menu click functionality
	$('#button_blog').click(function() {
		parent.location = "index.php";
	});
	
	$('#button_services').click(function() {
		parent.location = "index.php";
	});
	
}