$(document).ready(function(){

	$(".placeholderField").focus(function(){
    	if($(this).val()==$(this).attr('title')){
        	$(this).val('');
        }
    });
    $(".placeholderField").blur(function(){
    	if($(this).val()==''){
       		$(this).val($(this).attr('title'));
       	}
    });
    $(".placeholderField").blur();

	
	/*********************************************************************************************/
	/*External links to _blank target (allows valid XHTML strict whilst opening external windows)*/
	/*********************************************************************************************/
	$('a[rel="external"]').click(function(){
		this.target = "_blank";
	});
	
	/**********************/
	/*INIT GALLERY COLORBOX/
	/**********************/
	/*
	$('a[rel="gallerySlideshow"]').colorbox({slideshow:true,slideshowSpeed:6000,slideshowAuto:true});
	*/
	//fixH('content_left','content_right');

});
