var images = '';
images = '<img src="/img/home/text.jpg" alt="text" />' + 
'<img src="/img/home/selle.jpg" alt="selle" />'+
'<img src="/img/home/everett.jpg" alt="everett" />'+
'<img src="/img/home/gothic.jpg" alt="gothic" />'
;

$(document).ready(function(){
	
	$('#block').append(images);
	$('#block').height('294px');
	$('#block').children('img:not(:first)').hide().css('z-index', '0');
	$('.editThis').css({top: '-30px'});
	setInterval ( function(){rotateImages('#block')}, 7000) ;
	if( $.browser.msie && parseInt( $.browser.version ) < 7 ){
		flash();
	}
});

function flash()
{
	var markup = "<h2>Warning</h2><p>This version of Microsoft Internet Explorer is out of date and is no longer being supported.<br /> To view the site as intended, please upgrade your browser to a supported version (Internet Explorer 7 or newer), or use a free alternative such as <a href='http://firefox.com'>Mozilla Firefox.</a><a href='#' id='close'>Close this window</a></p>";
	$('body').prepend('<div id="ie">'+markup+'</div>');
	$('#ie').hide();
	$('#ie').slideDown();
	$('#close').click(function(){
		$('#ie').slideUp('slow');
		return false;
	});
}