var windowSizeArray = [ 
	//Twitter
	"width=500,height=343",
	//Other Option, not used.
	"width=300,height=400,scrollbars=yes" 
];               
jQuery(document).ready(function(){
	//Use for Opening Twitter bookmakring window
	
//	var pos = jQuery("#container").offset();     
//	var width = jQuery("#container").width();   
//	//show the menu directly over the placeholder   
//	jQuery('#social-bm').css({ 
//		"left": (pos.left + width) + "px" 
//	});
	
	

	jQuery('.newWindow').click(function (event){
		var url = jQuery(this).attr("href");   
		var windowName = "popUp";//$(this).attr("name");
		var windowSize = windowSizeArray[jQuery(this).attr("rel")];
		window.open(url, windowName, windowSize);
		event.preventDefault(); 
	});
	
	//Keep the Bookmarsk tab at 160px down from the top of the window at all times.
	jQuery(window).scroll(function() {
		var offset = 160+jQuery(document).scrollTop()+"px";   
		jQuery('#social-bm').animate({top:offset},{duration:300,queue:false}); 
	}); 


}); 
