var actualPhoto;
$(function() { 
	$("div#makeMeScrollable").smoothDivScroll({
    scrollingSpeed: 6, 
    mouseDownSpeedBooster: 3, 
    autoScroll: "",
    visibleHotSpots: "always",
    startAtElementId: "startAtMe"});
  $("div#makeMeScrollable2").smoothDivScroll({
    scrollingSpeed: 6, 
    mouseDownSpeedBooster: 3, 
    autoScroll: "",
    visibleHotSpots: "always",
    startAtElementId: "startAtMe"});
    
   $('#makeMeScrollable2 .wrap').hover(function(){
      $(this).children('.comment').stop().css("top", "17px");}  
      , function(){  
         $(this).children('.comment').stop().animate({"top": '120px'}, 300);
      }); 
  
  $('#openCatalogue').click(function(){
			$('#catalogueBox').dialog('open');
			return false;
		});
  	
});

$(document).ready(function() {
     $('#makeMeScrollable a').click(function(){
     actualPhoto = $(this).attr("href");
      //$('#product').attr( $(this).attr("href") );
      $('#dialogBox').dialog('open');
      
      /* $('<img />')
      .attr('src', $(this).attr("href") )
      .attr('id','product')
      .load(function(){
        $('#product').replaceWith( $(this) ); 
      });
      $('#dialogBox').dialog('open');
        */
    return false;
  });

});
