 $(document).ready(function(){
   $("img.dropshadow").wrap("<div class='wrap1'><div class='wrap2'>" +
     "<div class='wrap3'></div></div></div>");
   $("ul li:first-child").addClass("first");
   $("ul li:last-child").addClass("last");
   $("#primary-content, #secondary-content, #footer, #masthead, #banner").wrapInner('<div class="gutter"></div>');
   $("a[href^=http], a[href*=.pdf], a[href*=.doc]").attr("target", "_blank");
 });
 
// Opens a "pop up Window" to a specific size.
jQuery('a.popup').live('click', function(){
	newwindow=window.open($(this).attr('href'),'','height=600,width=600');
	if (window.focus) {newwindow.focus()}
	return false;
});

