/*

jQuery scripts for Asthma Australia

*/

$('html').addClass('js');

$(document).ready(function(){

	//Background Image
	if(!($.browser.msie && $.browser.version < 7)){
	$.backstretch("../images/temp-bg.jpg", {speed: 500});
	};

	//Animate logo hover
 	$('#logo')
	.css( {backgroundPosition: "0 0"} )
	.mouseover(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 -5px)"}, 
			{duration:200})
		})
	.mouseout(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 0)"}, 
			{duration:500})
		})
	
});



