// Rollover
$(function(){
	$("img.rollover").mouseover(function(){
		if(!$(this).attr("src").match("_on")){					 
			$(this).attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"));
		}
	}).mouseout(function(){
		$(this).attr("src",$(this).attr("src").replace(/^(.+)_on(\.[a-z]+)$/, "$1$2"));
	})
});


// Page Scroll
$(function(){
		$('a[href^=#]').click(function(){
        var target;
        target = $( $(this).attr('href') );
         if (target.length == 0) {
            return;
        }
        $('html, body').animate({scrollTop: target.offset().top});
        return target;
    });
});

// Pop Up
$(function(){
	$(".eventCalender td a").fancybox({
		"width" : 320,
		"height" : 540,
		"padding" : 0,
		"scrolling": "no"
   	});
});
