/**************************************************************************************** 
** 
**	copyright: (c) developed by Anvamedia 
**	www.anvamedia.com 
***************************************************************************************** 
** 
**	file: /includes/javascript/site.common.js 
** 
****************************************************************************************/ 






/***************************************************************************************/ 
$(document).ready(function() 
{ 
	$(".bottomMakesThumb img").fadeTo(200,0.2); 
	$(".bottomMakesThumb img").hover(function() 
	{ 
		$(this).fadeTo(200,1.0); 
	}, 
	function() 
	{ 
   		$(this).fadeTo(200,0.2); 
	}); 
}); 
/***************************************************************************************/ 
function amGetQuotePopup(rand_num) 
{ 
	if (rand_num.length > 0) 
	{ 
		$.modal( 
		'<iframe src="/includes/popups/popup.getquote.php?rand='+rand_num+'" height="500" width="500" frameborder="0" scrolling="no" hspace="0" vspace="0" style="border:0;">', 
		{ 
			opacity:60, 
			closeHTML: "", 
			overlayCss: 
			{ 
				width:"100%", 
				overflow:"hidden", 
				backgroundColor:"#000" 
			}, 
			containerCss: 
			{ 
				backgroundColor:"#000", 
				border:"3px solid #555", 
				height:500, 
				padding:0, 
				width:500 
			}, 
			escClose: true, 
			overlayClose: false 
		}); 
	} 
} 
/***************************************************************************************/ 
function amClosePopup() 
{ 
	parent.$.modal.close(); 
} 
/***************************************************************************************/ 
var screen_width = screen.width / 2; 
var screen_height = screen.height / 2; 
var window_width_bank = 820; 
var window_height_bank = 600; 
/***************************************************************************************/ 
function amOpenBankWindow() 
{ 
	window.open(
	"/bank/index.html", 
	"amSuperbLeasing_Bank", 
	"width="+window_width_bank+", height="+window_height_bank+", top=" + (screen_height-window_height_bank/2) + ", left=" + (screen_width-window_width_bank/2) + ",status=0, toolbar=0, menubar=0, location=0, resizable=0, scrollbars=1"
	); 
} 
/***************************************************************************************/ 

