jQuery.noConflict();
jQuery(document).ready(function() {
	jQuery("table tbody tr td a[rel='lightbox[sunstar]'] img").css("border-color","#d9c18f");
	jQuery("table tbody tr td a[rel='lightbox[sunstar]'] img").hover(
		function() {
			jQuery(this).css("border-color","9b7d3d");
		},
		function() {
			jQuery(this).css("border-color","#d9c18f");
		}
	);
});
