var eventBooking = ""; 
$(function() {
	
	$(".search_box input[type=text]").labelify({
		text: "label"
	});	
	
	var $els = $(".homepage_main .column").equalizeCols();
	var $els2 = $(".homepage_main, .news_column").equalizeCols();
	
	
	$('.page_header ul').cycle( {
	timeout:  5000 
	})

	$('table.data_table tr:eq(0)').addClass('tableHead');
	$('table.data_table_right tr:eq(0)').addClass('tableHead');
	
	$('p.view_cal').show();
	$('p.view_cal a').click(function () {
		$("div.calendar_show").slideToggle("slow");
		return false;
	});
	
	if(eventBooking != '') {
	eventBooking = "" + eventBooking;	
	}
	$('.bookingEvent_li input').val(eventBooking);
	
 
      $('hr').replaceWith("<div class='hr'><hr /></div>");

        
            $('.anythingSlider').anythingSlider({
                easing: "swing",      
                autoPlay: true,                 
                delay: 6000,                    
                startStopped: false,            
                animationTime: 600,             
                hashTags: true,                 
                buildNavigation: true,          
        		pauseOnHover: true,            
        		startText: "Start tour",          
		        stopText: "Stop tour"
            });

	
});