	$(document).ready(function(){
		$('').pngFix( );
		
		$('#enter').hover(function(){
			$(this).attr('src', "pub/images/enter-active.png");
		}, function(){
			$(this).attr('src', "pub/images/enter-inactive.png");
		})
		
		$('#watch').hover(function(){
			$(this).attr('src', "pub/images/watch-active.png");
		}, function(){
			$(this).attr('src', "pub/images/watch-inactive.png");
		})

		$('#see').hover(function(){
			$(this).attr('src', "pub/images/see-active.png");
		}, function(){
			$(this).attr('src', "pub/images/see-inactive.png");
		})
		
	});