//jQuery.noConflict();
jQuery(document).ready(function($){

	$(function() {
		$('li.download-android, li.download-blackberry').hover(function(){
			$(this).find('.cm').stop().animate({top:'24px'},{queue:false,duration:250});
		}, function(){
			$(this).find('.cm').stop().animate({top:'5px'},{queue:false,duration:500});
		});
	});
});
