jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
};

$.preloadImages("/gfx/photo1.jpg", "/gfx/photo2.jpg", "/gfx/photo3.jpg", "/gfx/photo1-select.jpg", "/gfx/photo2-select.jpg", "/gfx/photo3-select.jpg");

$(document).ready(function() {

$(function() {
  $("#mainmenu a").hover(function() {
    $(this).addClass("selected");
  }, function() {
    $(this).removeClass("selected");
  });
});

$("a[rel^='prettyPhoto']").prettyPhoto({
	animationSpeed: 'normal', /* fast/slow/normal */
	padding: 24, /* padding for each side of the picture */
	opacity: 0.75, /* Value betwee 0 and 1 */
	showTitle: false, /* true/false */
	allowresize: false /* true/false */
});

var profiles =
{
	windowCenter:
	{
		height:410,
		width:530,
		center:1,
		createnew:0
	}
};

$(function()
{
	$(".popupwindow").popupwindow(profiles);
});


});



