$(document).ready(function() {
	
	// launch button hover effect
	$('#launch').hover(function() {
		$('#normal').hide();
		$('#hover').show();
	},function() {
		$('#hover').hide();
		$('#normal').show();
	});
	
	// social media icons hover effect
	// won't work in IE8-
	$('#social li').hover(function() {
		// var id = this.id;
		$(this).animate({
			opacity: 0.5
		}, 200)
	},function() {
		$(this).animate({
			opacity: 1
		}, 200)
	});
	
});
