// JavaScript Document
$(document).ready(function(){	
	$("#follow img").hover(
		function()
		{
			this.src = this.src.replace("_off","_on");
			$(this).css('cursor','pointer');
		},
		function()
		{
			this.src = this.src.replace("_on","_off");
		}
	);
	
	$(".nav_slot").hover(
		function()
		{
			$(this).animate({ backgroundColor: "#999" }, 'slow');
			$(this).css('cursor','pointer');
		},
		function()
		{
			$(this).animate({ backgroundColor: "#5e5e5e" }, 'slow');
		}
	);
	$(function() {
	   $('.share_b').hover(
		function()
		{
			$(this).css('padding-bottom','10px');
		},
		function()
		{
			$(this).css('padding-bottom','0px');
		});
	});
	$('.nav_slot').click(function()
	{
  		var s = $(this).children('a').attr('href');
		window.location("http://localhost/xaplos_dev/"+s);
	});
});
