// Annash Radio powered by 4VisionMedia.com
$(document).ready(function() {

	$(".item").hover(
		function() {				
				$(this).find('img').animate({top: '0'}, 200,'linear', function() { });
				$(this).find('.txtmenu').animate({top: '10'}, 200,'linear', function() { });
			} ,	
		function() {
				$(this).find('img').animate({top: '-30'}, 200,'linear', function() { });
				$(this).find('.txtmenu').animate({top: '15'}, 200,'linear', function() { });
			}
	);
	
	$(".dwplay").hover(
		function() {				
				$(this).animate({opacity: 1}, 200,'linear', function() { });				
			} ,	
		function() {
				$(this).animate({opacity: 0.5}, 200,'linear', function() { });
			}
	);
	
 });
