// JavaScript Document

//$(document).ready(function() {
//						   
//	$(".right a img").each(function(){
//		var imgWidth = $(this).width();							
//		//alert (imgHeight);
//		if (imgWidth == 250){
//		$(this).parent().append('<img src="public/images/magnifier_icon_plus_text.png" alt="View larger images" width="250" height="36" class="control" />');
//		}else if (imgWidth != 250){
//		$(this).parent().append('<img src="public/images/magnifier_icon.png" alt="View larger images" width="36" height="36" class="control" />');
//		}
//	});
//	
//});

$(document).ready(function() {
						   
	$(".right a img").each(function(){
		$(this).parent().append('<img src="public/images/magnifier_icon.png" alt="View larger images" width="36" height="36" class="control" />');
	});
	$(".hirefleet_gallery a img").each(function(){
		$(this).parent().append('<img src="public/images/magnifier_icon.png" alt="View larger images" width="36" height="36" class="control" />');
	});
	
});
