(function(){
					
	var init = function() {
		
		$('#share-price-output').each(function(){
		
			$(this).html('Loading...');
			
			$.getScript('http://online.hemscottir.com/ir/epo/feed.jsp?type=js', function(){

				$('#share-price-output').html(prices + 'p<br/>Change Today (' + change + 'p)<br/>' + dateddmmmyyyy)

			});
			
		});
		
		$('#main-showcase').each(function(){
																			
			swfobject.embedSWF("flash/video.swf", "main-showcase-player", "522", "227", "9.0.0");

		});

		$('#earthport-coverage').each(function(){
																			
			swfobject.embedSWF("../flash/coverage.swf", "earthport-coverage-player", "566", "398", "9.0.0");

		});

		$('input.default,textarea.default').one('focus', removeDefaultVal);

		$('.your-business-list a').hover(mouseOver, mouseOut);

	} // end init

	var mouseOver = function() {
		
		$(this).addClass('rollover');
		
	} // end mouseOver

	var mouseOut = function() {
		
		$(this).removeClass('rollover');
		
	} // end mouseOut

	var removeDefaultVal = function() {
		
		$(this).val('');
		
		$(this).removeClass('default');
		
	} // end removeDefaultVal
	
	$(document).ready(init);
					
})();