/**
 * @author brian
 */

$().ready(function() { 
	$(".dialog-trigger").click(function(e) {
		e.preventDefault();
		$('<iframe frameborder="0" allowtransparency="true" style="background-color: transparent;" id="dialog" src="' + this.href + '" />').dialog({
			autoOpen: true,
			width: 600,
			height: 600,
			modal: true,
			resizable: true,
			autoResize: true,
			position: [ 200, 15 ]
	
		}).width(550).height(550);	
	});

	$(".item-availability").hover(
		function() {
			$(this).css('background-image', 'url(' + IMAGE_URL + '/site/' + SITE_CONFIG_NAME + '/images/status-' + $(this).attr("rel") + '-on.gif)');
			if ($(this).hasClass('item-availability-mine')) {
				$(this).css('cursor', 'pointer');
			}
		}, 
		function() {
			$(this).css('background-image', 'url(' + IMAGE_URL + '/site/' + SITE_CONFIG_NAME + '/images/status-' + $(this).attr("rel") + '.gif)');
			if ($(this).hasClass('item-availability-mine')) {
				$(this).css('cursor', 'default');
			}
		}
	);
});

