$(document).ready(function(){
	$('#vbanner').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 10000
	});

	$('#hbanner').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 15000
	});
	
	$('#vbanner-small').cycle({
		fx: 'scrollUp', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 5000
	});
	
	$('#regions').click(function(){
		$('#chooser').show();
	
	});
	$('#close').click(function(){
		$('#chooser').hide();
	
	});
	$('.choosereg').mouseover(function(){
		var imgname = "/" + this.id + ".jpg";
		$('#minimap').attr('src', imgname);
	});
    $(".buy").hover(
      function () {
//        $(this).next().children('.calendar-price-actual').addClass('strikedout');
	$(this).parent().parent().parent().children(':first').find("span.calendar-price-actual").addClass('strikedout');
		$(this).next().children('.calendar-price-discount').show();
      }, 
      function () {
//        $(this).next().children('.calendar-price-actual').removeClass('strikedout');
        $(this).parent().parent().parent().children(':first').find("span.calendar-price-actual").removeClass('strikedout');
		
		$(this).next().children('.calendar-price-discount').hide();
      }
    );
	
});

