$(document).ready(function()
{
	
  $("a.blank").click(function () {
    var strCallUri = "";
    var linkId = $(this).attr('id');
    var strCallUri = $(this).attr('href');
    if (linkId.length >0) {
      s_wdpro.trackClick(this);
    }
    window.open(strCallUri, '_blank');
    return false;
  });
  
});

$(document).ready(function()
{
	
  $("a.popup").click(function () {
    var strCallUri = "";
    var linkId = $(this).attr('id');
    var strCallUri = $(this).attr('href');
    if (linkId.length >0) {
      s_wdpro.trackClick(this);
    }
    window.open(strCallUri, 'ticketwin', 'width=720,height=600,toolbar=no,scrollbars=yes,menubar=no,status=yes,location=no,resizable=no');
    return false;
  });
  
});

$(document).ready(function()
{
		$( "#ie6button" ).click(function() {
			$( "#divFade" ).fadeOut('slow');
			$( "#ie6Error" ).fadeOut('slow');
			return false;
		});
});
	
$(document).ready(function()
{
$("img.rollOver").mouseover(function() {
		imgSrc = $(this).attr("src");
		imgSrc = imgSrc.substring(0,imgSrc.lastIndexOf(imgSrc.substring(imgSrc.length-4))) + '-on' + imgSrc.substring(imgSrc.length-4);
    $(this).attr("src",imgSrc);

  }).mouseout(function(){
    imgSrc = $(this).attr("src");
		imgSrc = imgSrc.substring(0,imgSrc.lastIndexOf(imgSrc.substring(imgSrc.length-7))) + imgSrc.substring(imgSrc.length-4);
    $(this).attr("src",imgSrc);
  });

});

$(document).ready(function()
{
	$('img.rollOver').each(function() {
			var tmp = [];
			preLoadImgSrc = $(this).attr('src');
			preLoadImgSrc = preLoadImgSrc.substring(0,preLoadImgSrc.lastIndexOf(preLoadImgSrc.substring(preLoadImgSrc.length-4))) + '-on' + preLoadImgSrc.substring(preLoadImgSrc.length-4);
	    preload_image = new Image();
			preload_image.src = preLoadImgSrc;

	});
});
