// JavaScript Document
$(function(){

	//hide everything
	$('#mainwrapper').hide();
	$('#seotext').hide();

	var animateIn = true;
	if ($.browser.msie && parseInt($.browser.version) < 9) {
		animateIn = false;
	}
	
	//when the whole page is loaded, animate everything in
	$(window).load(function () {
			
		//do fade in if IE 9 or above -OR- NOT IE
		if (animateIn){	
			
			$('#mainwrapper').fadeIn();
				
		}else{
			//just show main wrapper for IE <= 8
			$('#mainwrapper').show();				
		}
		
		$('#seotext').show();
			
	});



	/* simple image rollover */
	$('img[data-hover]').hover(function() {
		$(this).attr('tmp', $(this).attr('src')).attr('src', $(this).attr('data-hover')).attr('data-hover', $(this).attr('tmp')).removeAttr('tmp');
    }).each(function() {
		$('<img />').attr('src', $(this).attr('data-hover'));
    });;

});

