/*
	Home Scripts
    ~~~~~~~~~~~~~~
    © Mindshelf 2009
    Property of mcconnellbourn
    All Rights Reserved
*/
flashvars = {};
params = {wmode: "transparent", menu: "false"};
$('#homesplash').ready(function(){
    swfobject.embedSWF("http://www.mcconnellbourn.com.au/_img/homesplash2.swf", "homesplash", "974", "250", "9.0.0", "http://www.mcconnellbourn.com.au/_rsc/expressInstall.swf",flashvars,params);
});
$('#enjoy').ready(function(){
    swfobject.embedSWF("http://www.mcconnellbourn.com.au/_img/enjoy.swf", "enjoyswf", "974", "50", "9.0.0", "http://www.mcconnellbourn.com.au/_rsc/expressInstall.swf",flashvars,params);
});
preloadImages = Array('homenext-sellD.jpg','homenext-buyD.jpg','homenext-rentD.jpg','homenext-meetD.jpg');
loadImages();
$(document).ready(function(){
	$('.homelink').each(function(i,val){
		$('.homelink:eq('+i+')').hover(function(){
			$('.homelink:eq('+i+') .bg').stop().animate({opacity:0},200);
		},function(){
			$('.homelink:eq('+i+') .bg').stop().animate({opacity:0.2},200);
		}).find('.bg').animate({opacity:0.2},20);
	});
});
$('.slideshow_img:last>img').ready(function(){
	window['total_img']=$('.slideshow_img').length;
	window['current_img']=null;
	$('.slideshow_img').css({'opacity':0});
	if(window['total_img']>1){
		startSlideshow();
	}else{
		$('.slideshow_img:eq(0)').css('display','block').fadeTo(700,1);
	}
});
function startSlideshow(){
	if(window['slideshow_timeout']){
		clearTimeout(window['slideshow_timeout']);
	}
	if(window['current_img']==null){
		window['current_img']=0;
		$('.slideshow_img:eq(0)').css('display','block').fadeTo(1000,1);
		window['slideshow_timeout']=setTimeout('startSlideshow();',10000);
	}else{
		oldimg=window['current_img'];
		if(window['current_img']+1>=window['total_img']){
			window['current_img']=0;
		}else{
			window['current_img']++;
		}
		$('.slideshow_img:eq('+oldimg+')').fadeTo(1000,0,function(){$('.slideshow_img:eq('+oldimg+')').css('display','none');});
		$('.slideshow_img:eq('+window['current_img']+')').css('display','block').fadeTo(1000,1);
		window['slideshow_timeout']=setTimeout('startSlideshow();',6000);
	}
};
$('#orangeB').ready(function(){$('#orangeB').css({'height':'1px','padding':'0'});});