$(document).ready(function(){

	/*Hacker Safe*/

		$("a#hs").bind("contextmenu", function(){
		alert("Copying Prohibited by Law - HACKER SAFE is a Trademark of ScanAlert")
		});
		$("a#hs").bind("contextmenu", function(e){
		return false;
		});		


/*Face Box*/

jQuery(document).ready(function($) {
  $('a[rel*=facebox], a.facebox, a#spam-policy').facebox()
});




/* Link Insertion*/
$(document).ready(function() {
$("[class^='lt_']").each(function(){
								 $url = $(this).attr('class').slice(3)
								 $(this).wrap('<a href="' + $url + '"></a>');
								 }
					)
$("[class^='ltb_']").each(function(){
								 
								 $url = $(this).attr('class').slice(4)
								 $(this).wrap('<a href="' + $url + '" target="_blank"></a>');
								 }
					)

});
		
/*Show more*/
 $(".list-more-content").hide();
	$(".list-more").click(function(){
		$(".list-more-content").slideToggle("fast");
		$(this).toggleClass("active"); return false;
									});	
	
	
	});