jQuery(document).ready(function(){

	//code here...
	//alert("jQuery");
	
    //pseudo target="blank"
    $('a[rel="external"]').click(function(){
        window.open(this.href);
        return false;
    });
    
    
    // cabin micro gallery
    
    $('.thumbs li a').hover(function(e){
        var path = $(this).attr('href');
        var tomid = "/mid/";
        var midpath = path.replace("/full/", tomid);
        $(this).parents('.thumbs').children('img').attr('src', midpath);
    });
    
    $('.thumbs a').lightBox();
    
});