/*<![CDATA[*/
		   
/*****************************************************************************
//-> START General Functions
*****************************************************************************/

/*****************************************************************************
//-> END General Functions
*****************************************************************************/
/*****************************************************************************
//-> START Window Load
*****************************************************************************/

$(document).ready(function(){

// --> Start Disable '#' links from being clicked
	$("a[href^='#']").click(function() {
		return false;
	});

// --> Init External Links
	$("a[rel*='external']").attr("target","_blank");
	
// --> Stripping a tags with: class="remove"
	$("a[class*='strip']").each(function(){
		$(this).replaceWith($(this).html()); 
	});
	
// --> Init SPAM Email links
	$("a[href^='mailto:']").each(function(){
		var mail = $(this).attr("href").replace("mailto:","");
		var replaced = mail.replace("/at/","@");
		$(this).attr("href","mailto:"+replaced);
		if($(this).text() == mail){ 
			$(this).text(replaced);
		}
	});
});

/*****************************************************************************
//-> END Window Load
*****************************************************************************/

/*]]>*/
