$(function(){
			
	var cssObj = {
        fontFamily: "'AdelleWebLight', Arial, Helvetica, 'Lucida Sans', 'Lucida Grande', Verdana, sans-serif",
        color: "#27AFB1",
        fontWeight: "bold",
        lineHeight: "1.4",
        fontSize: "1.4em"
      };
	
	$("body.single .entrybody p:first, body.page .entrybody p:first").css(cssObj);
	
	var windowSizeArray = [ "width=550,height=440","width=300,height=300","width=400,height=375","width=400,height=320"];

	$('.newWindow').click(function (event){
                                    
        var url = $(this).attr("href");
		var windowName = "popUp";//$(this).attr("name");
		var windowSize = windowSizeArray[$(this).attr("rel")];
		
		window.open(url, windowName, windowSize);
	
		event.preventDefault();
	
	});

});
