/* ********** (C) LASTSECOND.NL 2009 ********** */

/* ********** ****** ********* ********** */
/* ********** JQUERY FUNCTIONS ********** */
/* ********** ****** ********* ********** */

$(document).ready(function() {
		
	$(function() {
		$("#tabs").tabs();
	});
			
	//Open links naar aff. in een nieuw venster en registreer de click via GA
	$(function(){
		$('a.new-window').click(function(){
		  if (typeof pageTracker != "undefined") 
		  {
			  pageTracker._trackEvent('External_URL', 'Click', this.href);
		  }
	      window.open(this.href);
	      return false;
	      });
    });

	$(".stars-wrapper").stars({
			disabled: true,
		     inputType: "option",
		     split: 2
	});
	
	$("div.list div.accommodation").mouseover(function(){
		$(this).find("div.more-info").show();
	    }).mouseout(function(){
	    	$(this).find("div.more-info").hide();
	});

	$("table.acco-list tbody tr").hover(
		      function () {
		        $(this).addClass("highlight");
		      }, 
		      function () {
		    	  $(this).removeClass("highlight");
		      }
	);

	$("table.acco-list tbody tr").click(
		      function () {
			       anchor = $(this).find("a").attr('href');
			       window.location = anchor;
		      }
	);	
	
	$("div.trips table tbody tr").hover(
		      function () {
		        $(this).addClass("highlight");
		      }, 
		      function () {
		    	  $(this).removeClass("highlight");
		      }
	);

	$("div.trips table tbody tr").click(
		      function () {
			       anchor = $(this).find("a").attr('href');
			       window.open(anchor);
				      return false;
		      }
	);		
	
});



/* ********** ********** ********* ********** */
/* ********** JAVASCRIPT FUNCTIONS ********** */
/* ********** ********** ********* ********** */

/*

*/
