$(document).ready(function(){
/////---Popup Blocks classes
$("#CodeBlocks").children("div").addClass("popup");
$(".popupClose").bind("click", function(){ $.fn.colorbox.close(); });
//_______________________________________________________________
//Global Inline Page
$(".inline").colorbox({iframe: true, innerWidth: 930, innerHeight: 520});
//Comments Box Tracking
	$(".Tracker").colorbox({inline: true, scrolling: false, opacity: 0.8, href:"#TrackerBox"});
//User Login Box
	$(".pop-login").colorbox({transition: 'fade', inline: true, opacity: 0.8, href:"#LoginBox"});
	//If Login Fails
	if($_GET['login'] == "failed"){ 
		$("#LoginBox .popupBody span").show();
		$(".pop-login:first").trigger('click');
	}
//Donate Box
	$("#Donate-Button").colorbox({inline: true, opacity: 0.8, href:"#DonateBox"});
//Backgroud Switcher Widget
	$("#widgets ul li a:contains('Backgrounds')").colorbox({scrolling: false, opacity: 0.5, inline: true, href:"#bgChangerBox"});
//Post Video Links
	$(".videoHD").colorbox({opacity: 0.8, iframe:true, width:853, height:505});
//Newsletter Subcription
	$("#Newsletter-Button").colorbox({inline: true, opacity: 0.8, href:"#NewsletterBox"});
//Downloads Page Downloads-List
	$("#Download-List li").children("a").each(function(){
		$(this).bind("click", function(){
			var title = $(this);
			var Body = $(this).next();
			popBox(title,Body);
	   });											 
   });
	
});