/*
* Wastepro - The waste professionals
* Designed and developed by Websolvers Inc. copyright 2009 Websolvers Inc. All rights reserved.
* 
* scripts.js - Contains all jquery code
* 
*/

$(document).ready(function(){
	
	/*-------------
	 *Apply Png Fix 
	 --------------*/
	$(document).pngFix(); 
	
	/*----------------
	 *Apply inner fade
	 -----------------*/
	$('#img_container').innerfade({ 
	speed: 'slow', 
	timeout: 8000, 
	type: 'sequence', 
	containerheight: '324px' 
	}); 
	
	/*------------------------
	 *Apply nav indicator icon
	 -------------------------*/
	
	var bodyClass = $('body').attr('class');
	
	if(bodyClass){;
		$('span.' + bodyClass).css({
		'width' : '17px',
		'height' : '18px',
		'position' : 'absolute',
		'left' : '-6px',
		'background-image' : 'url(/locations/cf/winterpark/images/nav-indicator.gif)',
		'background-repeat' : 'no-repeat'
		});
	}
	
});

