(function($){
	// opens link in new window
	$("a[href^='http:']").not("[href*='zimbalideluxevilla.co.za']").attr('target','_blank'); 
	
	// hides and replaces text in form input fields
	$('input').focus(
		function(){
			$test = $(this).val()
			$(this).val('');
		}
	);
	$('input').blur(
		function(){
			if($(this).val() == ''){
				$(this).val($test);
			}
		}
	);
	

	$('.date-picker').date_input();
 

	$('a[rel^="group"]').fancybox();
	$('a[rel^="mini"]').fancybox();
	$('a[rel^="vids"]').fancybox();
	$('a[rel^="special"]').fancybox();
})(this.jQuery);




window.log = function(){
  log.history = log.history || [];   
  log.history.push(arguments);
  if(this.console){
    console.log( Array.prototype.slice.call(arguments) );
  }
};
(function(doc){
  var write = doc.write;
  doc.write = function(q){ 
    log('document.write(): ',arguments); 
    if (/docwriteregexwhitelist/.test(q)) write.apply(doc,arguments);  
  };
})(document);



