$(document).ready(function(){ 

	$(".alphabtn,.alphabtn img").hover(function(){
		//$(this).fadeTo("fast", 0.5);
		$(this).stop();
		$(this).animate( { opacity:0.7 }, 500 , "easeOutCubic");
	},function(){
		//$(this).fadeTo("fast", 1.0);
		$(this).stop();
		$(this).animate( { opacity:1 }, 500 , "easeOutCubic");
	});
	
	

});
function tracking(n){
	ebispageTracker(n);
}
function VideoForAppleDevice( src , container , w , h ){
	var div = document.createElement("div");
	var video = document.createElement("video");
	video.id = "videoplayer";
	video.className = "video";
	video.width = w;
	video.height = h;
	video.controls = "controls";
	video.autoplay = "autoplay";
	video.bgcolor = "white";
	var source = document.createElement("source");
	source.src = src;
	source.type = "video/mp4";
	
	jQuery(video).append(source);
	jQuery(container).append(video);
}
