//var img = $('img');
//img.crop({ height: 30, width: 30 })
//return false; 
var pic_real_width;
var pic_real_height;

$("img#obrazek").load(function() {
    // Remove attributes in case img-element has set width and height
    $(this).removeAttr("width")
           .removeAttr("height")
           .css({ width: "", height: "" }); // Remove css dimensions as well

    pic_real_width = this.width;
    pic_real_height = this.height;
});


$(function()
{   
    imgs=$("img#obrazekszerokosc");
    imgs.crop('28', '12', '54', '49','http://remysharp.com/wp-content/uploads/2007/03/transparent.gif')
    
    imgw=$("img#obrazekwysokosc");
    imgw.crop('12', '-30', '54', '49','http://remysharp.com/wp-content/uploads/2007/03/transparent.gif')
    
    imgs2=$("img#obrazekszerokosc2");
    imgs2.crop('-50', '0', '202', '214','http://remysharp.com/wp-content/uploads/2007/03/transparent.gif')
    
    imgw2=$("img#obrazekwysokosc2");
    imgw2.crop('0', '-64', '202', '214','http://remysharp.com/wp-content/uploads/2007/03/transparent.gif')
    
    
});



