jQuery(document).ready(function(){
	// attachment
	// <a href="./download/file.php?id=21100&amp;mode=view"><img src="./download/file.php?id=21100&amp;t=1" alt="helmet front.JPG
    jQuery('a[href$="mode=view"]').each(function(){
		jQuery(this).colorbox({photo: true, maxWidth: '800'});
    });
    var max_width = 760;
    var selector = 'div.postbody img[alt="Image"]';
    jQuery(selector).each(function(){
        var width = jQuery(this).width();
        var height = jQuery(this).height();
        //if (width > max_width) {
            //Set variables	for manipulation
            var ratio = (height / width);
            var new_width = max_width;
            var new_height = (new_width * ratio);
            jQuery(this).height(new_height).width(new_width);
            jQuery(this).hover(function(){
                jQuery(this).attr("title", "ZOOM")
                jQuery(this).css("cursor", "pointer");
            });
        //}
		jQuery(this).colorbox({href: jQuery(this).attr('src')});
    });
});
