//yoni and matt's jquery stuff for RULA JB (c) 2009-10
//info@social-ink.net

var $j = jQuery.noConflict(); //declare this cause of problems with WP

$j(function(){
	
	$j("#btns_appstore img").hover(
	function() {
	$j(this).stop().animate({"opacity": "0.8"}, "fast");
	},
	function() {
	$j(this).stop().animate({"opacity": "1"}, "fast");
	});
	
});
