$(document).ready(function(){
	$(".tv").hover(function() {
		$(this).attr("src","http://64.207.152.179/wp-content/themes/Wooden/images/homepage/tv-o.png");
			}, function() {
		$(this).attr("src","http://64.207.152.179/wp-content/themes/Wooden/images/homepage/tv.png");
	});
	$(".camera").hover(function() {
		$(this).attr("src","http://64.207.152.179/wp-content/themes/Wooden/images/homepage/camera-o.png");
			}, function() {
		$(this).attr("src","http://64.207.152.179/wp-content/themes/Wooden/images/homepage/camera.png");
	});
	$(".post").hover(function() {
		$(this).attr("src","http://64.207.152.179/wp-content/themes/Wooden/images/homepage/post-o.png");
			}, function() {
		$(this).attr("src","http://64.207.152.179/wp-content/themes/Wooden/images/homepage/post.png");
	});
	$(".register").hover(function() {
		$(this).attr("src","http://64.207.152.179/wp-content/themes/Wooden/images/homepage/register-o.png");
			}, function() {
		$(this).attr("src","http://64.207.152.179/wp-content/themes/Wooden/images/homepage/register.png");
	});
	$(".books").hover(function() {
		$(this).attr("src","http://64.207.152.179/wp-content/themes/Wooden/images/homepage/books-o.png");
			}, function() {
		$(this).attr("src","http://64.207.152.179/wp-content/themes/Wooden/images/homepage/books.png");
	});
	$(".roll-dex").hover(function() {
		$(this).attr("src","http://64.207.152.179/wp-content/themes/Wooden/images/homepage/roll-a-dex-o.png");
			}, function() {
		$(this).attr("src","http://64.207.152.179/wp-content/themes/Wooden/images/homepage/roll-a-dex.png");
	});
	$(".meetmary-pic").hover(function() {
		$(this).attr("src","http://64.207.152.179/wp-content/themes/Wooden/images/homepage/meetmary-o.png");
			}, function() {
		$(this).attr("src","http://64.207.152.179/wp-content/themes/Wooden/images/homepage/meetmary.png");
	});
	$(".services2").hover(function() {
		$(this).attr("src","http://64.207.152.179/wp-content/themes/Wooden/images/homepage/services2-o.png");
			}, function() {
		$(this).attr("src","http://64.207.152.179/wp-content/themes/Wooden/images/homepage/services2.png");
	});
	
	$(".blog").hover(function() {
		$(this).attr("src","http://64.207.152.179/wp-content/themes/Wooden/images/homepage/blog-o.png");
			}, function() {
		$(this).attr("src","http://64.207.152.179/wp-content/themes/Wooden/images/homepage/blog.png");
	});
	$(".facebook-home").hover(function() {
		$(this).attr("src","http://64.207.152.179/wp-content/themes/Wooden/images/homepage/facebook-o.png");
			}, function() {
		$(this).attr("src","http://64.207.152.179/wp-content/themes/Wooden/images/homepage/facebook.png");
	});
	$(".twitter-home").hover(function() {
		$(this).attr("src","http://64.207.152.179/wp-content/themes/Wooden/images/homepage/twitter-o.png");
			}, function() {
		$(this).attr("src","http://64.207.152.179/wp-content/themes/Wooden/images/homepage/twitter.png");
	});
	
	//hide the all of the element with class msg_body
	$(".press-list-item").hide();
	
	$('li.press_head').hover(
		function () {
			//show its submenu
			$('ul', this).stop(true, true).slideDown(300);

		}, 
		function () {
			//hide its submenu
			$('ul', this).stop(true, true).slideUp(300);			
		}
	);
	
	$('ul.press-list-item').css('list-style-image', 'url(http://64.207.152.179/wp-content/themes/Wooden/images/list-dash.gif)');  

});

