//////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////  THE BLUE E BLOG   /////////////////////////////////////
//////////////////////////////////   Javascript Document   ///////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////


//  START: IE8 Download CTA.  // ---
$( document ).ready( function() {

	//- operating system
	var os = navigator.userAgent.indexOf( 'Windows NT 6.1' );
	

	//- non-windows OS
	if ( !$.browser.win() ){
		$( '#ie8Copy' ).html( 'Internet Explorer 8 is available only on PCs running Windows. Click here to check out Windows 7.' );
		$( '#ie8Btn' ).html( 'Windows 7' );
		$( '#ie8Btn' ).attr( 'href', 'http://www.microsoft.com/uk/windows/' );
		$( '#ie8Btn' ).attr( 'title', 'Windows 7' );
	}
	
	//- non-ie8
	else if ( !$.browser.msie()
		|| ( $.browser.msie() && $.browser.version.number() < 8.0 ) ) {
		
		//- windows 7
		if ( os!=-1 ){
			$( '#ie8Copy' ).html( 'Internet Explorer 8 is included in Windows 7. To get a better web experience, click on the "e" logo next to your Start button on the Windows taskbar.' );
			$( '#ie8Btn' ).html( "Can't find it?" );
			$( '#ie8Btn' ).attr( 'href', 'http://windows.microsoft.com/en-GB/windows7/help/' );
			$( '#ie8Btn' ).attr( 'title', "Can't find it?" );
		} 
		
		//- non-windows 7
		else {
			$( '#ie8Copy' ).html( 'Faster. Easier. Safer<br/>To get a better web experience, download Internet Explorer 8.' );
			$( '#ie8Btn' ).html( 'Download Now!' );
			$( '#ie8Btn' ).attr( 'href', 'http://www.microsoft.com/uk/windows/internet-explorer/worldwide-sites.aspx' );
			$( '#ie8Btn' ).attr( 'title', 'Download Now!' );
		}
		
	//- ie8
	} else  {
		$( '#ie8Copy' ).html( "You're already running Internet Explorer 8. Get an even better experience with free add-ons from our partners." );
		$( '#ie8Btn' ).html( 'Get free add-ons' );
		$( '#ie8Btn' ).attr( 'href', 'http://ieaddons.com/gb/' );
		$( '#ie8Btn' ).attr( 'title', 'Get free add-ons' );
	}
	
} );
//  END: IE8 Download CTA.  // ---