var profiles =
{

	window800:
	{
		height:800,
		width:800,
		status:1
	},

	windowChat:
	{
		height:500,
		width:600,
		center:1,
		scrollbars:1
	},

	windowCenter:
	{
		height:800,
		width:640,
		center:1,
		scrollbars:1
	},
	
	windowCenterVideo:
	{
		height:360,
		width:480,
		center:1,
		scrollbars:1
	},

	windowNotNew:
	{
		height:300,
		width:400,
		center:1,
		createnew:0
	}

};

$(document).ready(function() {
	$(".popupwindow").popupwindow(profiles);
	
	
	function prepareLink() {
		var gallery = document.getElementById('gallery');
		var links = gallery.getElementsByTagName('a');
		for ( var i = 0; i < links.length; i++ ) {
			links[i].onclick = getLink;
		}
	}
	
	function getLink() {
		showPic( this.getAttribute('href') );
		return false;
	}
	
	function showPic(whichPic) {
		var initImg = document.getElementById('initialImg');
		initImg.setAttribute('src', whichPic);
	} 
	


	//prepareLink();
});
