﻿$(function()
{
	if($("#box_left").height()< 350){
		$("#box_left").height(350);
	}

	
});

$(function()
{ 
	
    $("#imageOptions a").click(function()
        {
      
        var imageSource = $(this).children("img").attr("src");
       	showImage(imageSource);
         return false;
        });
});

function showImage(src)
{

$("#loader img").attr("src", src);                                                                              
}



