(function($) {
	$(window).load(function() {
		// check IE7 
		var ie7 = navigator.userAgent.search(/MSIE 7.0/);
		if ( ie7 > 0 ) { 
			alert('This site has been optimized for IE8 or higher.\nPlease upgrade your version of Internet Explorer.');
			document.location = 'http://windows.microsoft.com/en-US/internet-explorer/products/ie/home';
		}
	});
	
	$(document).ready(function() {
		
        $('a.viewMore').click(function() {
            if ( $(this).text() == 'View More' ) { 
                $(this).parent().find('div.more').slideDown();
                $(this).html('Hide This');
            }
            else if ( $(this).text() == 'Hide This' ) { 
                $(this).parent().find('div.more').slideUp();
                $(this).html('View More');
            }
            return false;
        });

        $('a.readMore').click(function() {
            if ( $(this).text() == 'View More' ) { 
                $(this).prev('div.subContent').slideDown();
                $(this).html('Hide This');
            }
            else if ( $(this).text() == 'Hide This' ) { 
                $(this).prev('div.subContent').slideUp();
                $(this).html('View More');
            }
            return false;
        });
        
	}); // end document.ready function
})(jQuery);
