function PopupPic(sPicURL) { 
window.open("photos.htm?"+sPicURL, "", "resizable=1,HEIGHT=300,WIDTH=300");
}




$(document).ready(function () {
$("div.gallery div.around-img").hover (
	function () {
	$(this).addClass("hover-gallery");
	},
	function () {
	$(this).removeClass("hover-gallery");
	}
)

$("table.basic tr").hover (
	function () {
	$(this).addClass("hover-table");
	},
	function () {
	$(this).removeClass("hover-table");
	}
	)



$("table.striped tr:odd").addClass("stripe");  // striped table
	
	$("table.striped tr").hover(
	function() {
		$(this).addClass("striped-hover");									 
		},
	function() {
		$(this).removeClass("striped-hover");
		}
	);

});




function RunFreeMagazine()
{
       var introFO = new FlashObject("js/freemagazine.swf", "fla", "150", "40", "8", "#FFFFFF");
      	introFO.addParam("wmode","transparent");
		introFO.addParam("menu", "false");
		introFO.write("freemag");
		
}



