$(function(){
	$(".topMenuBtn").hover(
			function(){
				$(">img",this).attr('src',function(){
					return $(this).attr('src').replace("_off","_on");
				});
			},
			function(){
				$(">img",this).attr('src',function(){
					return $(this).attr('src').replace("_on","_off");
				});
			}
	);
	
	$(".topMenuBtn").click(function(){
		switch($(this).attr('id')){
			case "topMenu02" : location.href='index.html';break;
			case "topMenu03" : location.href='aboutUs.html';break;
			case "topMenu04" : location.href='services.html';break;
			case "topMenu05" : location.href='PatientForms.html';break;
			case "topMenu06" : location.href='faq.html';break;
			case "topMenu07" : location.href='contact.html';break;
			case "topMenuk02" : location.href='Kindex.html';break;
			case "topMenuk03" : location.href='KaboutUs.html';break;
			case "topMenuk04" : location.href='Kservices.html';break;
			case "topMenuk05" : location.href='KPatientForms.html';break;
			case "topMenuk06" : location.href='Kfaq.html';break;
			case "topMenuk07" : location.href='Kcontact.html';break;

			
		}
	});
});

function setCurrentPage(obj){
	var obj = "#"+obj;
	$(obj+" img").attr('src',function(){
			return $(this).attr('src').replace("_off","_on");
	});

	$(obj).removeClass('topMenuBtn');
}
