$(document).ready(function()
{
    
    $("a[rel^='prettyPhoto']").fadeTo(500, 0.5);

    $("a[rel^='prettyPhoto']").hover(
        function(event)
        {
            //$("a[href="+this.href+"]").fadeTo(500, 1);
            $("a[href="+this.href+"]").animate(
            {
                marginTop : 0,
                marginBottom : '10px',
                opacity : 1
            }, 500);
			
			var s = this.id.split('_');
			$("img#glass_"+s[1]).animate(
			{
				opacity : 0.4
			}, 500);
			
			
        },
        function(event)
        {
            //$("a[href="+this.href+"]").fadeTo(500, 0.5);
            $("a[href="+this.href+"]").animate(
            {
                marginTop : '5px',
                marginBottom : '0',
                opacity : 0.5
            }, 500);
			
			var s = this.id.split('_');
			$("img#glass_"+s[1]).animate(
			{
				opacity : 1
			}, 500);
        }
    );

    $("a[rel^='prettyPhoto']").prettyPhoto(
    {
        allowresize : true,
        opacity: 0.5,
        padding : 20,
        showTitle : false
    });
});

function place_swf(w,h,href,color)
{
    var so = new SWFObject(href, "", w, h, "9", color);    
    so.write("fullResImageContainer");
    //document.getElementById('fullResImageContainer').innerHTML
}
