// JavaScript Document
$(document).ready(function(){
	setSubMenus();
	rollOver();
	jumpTo();
});


function setSubMenus(){
	$('#menu_our_services').click(function(){
		$('#sub_our_services').css('display', 'block');	
		

	});
	
	$('#menu_get_set_up').click(function(){
		$('#sub_get_setup').css('display', 'block');					   
	});
}

function jumpTo(){
	$('.button').click(function(){
		location.href = $(this).children().find('[href]').attr('href') ;
	});

	$('.submenu_item').click(function(){
		location.href = $(this).children().find('[href]').attr('href') ;
	});

}

function rollOver(){


	$('.button').mouseover(function(){
		$(this).css('backgroundImage', 'url(images/button_bg_mouseover.jpg)');
	});
	
	$('.button').mouseout(function(){
		$(this).css('backgroundImage', 'url(images/button_bg.jpg)');
	});

	$('.submenu_item').mouseover(function(){
		$(this).css('backgroundImage', 'url(images/submenu_bg_mouseover.png)');
	});
	
	$('.submenu_item').mouseout(function(){
		$(this).css('backgroundImage', 'url(images/submenu_bg.png)');
	});

}