//MEDICAL LASERS AUSTRALIA SCRIPTS
$(document).ready(function(){
	//MENU
	$('.menuNavThirdLevelCurrent').parent().parent().addClass('menuNavSubLevelCurrent');
	$('.menuNavSubLevelCurrent').parent().parent().addClass('menuNavTopLevelCurrent');
	//MENU PARENT HOVER
	$('.menuNavTopLevel:not(.menuNavTopLevelCurrent)').mouseenter(function(){$(this).children().css({'background-color':'#355f6b','border-color':'#305560'});});
	$('.menuNavTopLevel:not(.menuNavTopLevelCurrent)').mouseleave(function(){$(this).children().css({'background-color':'transparent','border-color':'transparent'});});
	//MENU DROPDOWN ARROW
	$('.menuNavSubLevel').parent().parent().children().prepend('<img alt="" height="14" src="../SiteFiles/medicallaserscomau/images/a.png" width="16" />');
	//INITIALIZE
	$('#redback a').fadeTo(0,0.6);
	//FADE EFFECTS
	$('#hot1').mouseenter(function(){$('#hot1 img').stop().fadeTo(200,0.8);});
	$('#hot1').mouseleave(function(){$('#hot1 img').stop().fadeTo(200,1);});
	$('#hot2').mouseenter(function(){$('#hot2 img').stop().fadeTo(200,0.8);});
	$('#hot2').mouseleave(function(){$('#hot2 img').stop().fadeTo(200,1);});
	$('#hot3').mouseenter(function(){$('#hot3 img').stop().fadeTo(200,0.8);});
	$('#hot3').mouseleave(function(){$('#hot3 img').stop().fadeTo(200,1);});
	$('#redback a').mouseenter(function(){$(this).stop().fadeTo(200,1);});
	$('#redback a').mouseleave(function(){$(this).stop().fadeTo(200,0.6);});
	//CONTACT US CONTENT PAGE REPLACE TEXT
	$('#_ctl0_lblFormName').parent().addClass('replace');
	$("#_ctl0_lblFormName").text("Contact Us");
});
//SLIDER
$(window).load(function(){
	$('#slider').nivoSlider({effect:'fade',directionNav:false,controlNav:false});
});
