//=======================================================================================================
//-------------------------------------------------------------------------------------------------------
//	Custom Javascript functions
//-------------------------------------------------------------------------------------------------------
//=======================================================================================================
$(document).ready(function() 
{ 
	//	Galery lightbox - load video
	$("a").click(function () {

		url	= $(this).attr("href");

		if( url.substring(0,4) != "http" )
		{
			return;
		}

		url	= "/site/redirect.php?url=" + escape( url );

		$(this).attr(	"href",		url);
		$(this).attr(	"target",	"_blank");
    });    



} 
);