// JavaScript Document
$(document).ready(function() {    
    $("a[rel^='prettyPhoto']").prettyPhoto({theme:'dark_rounded'}); 
        
    $("img.refImage").fadeTo("fast", 0.5);
    
    $("img.refImage").mouseover(function () {
      $(this).fadeTo("fast", 1);
    });      
    
    $("img.refImage").mouseout(function () {
      $(this).fadeTo("fast", 0.5);
    });
	
	
	 
    
    
});  


