// JavaScript Document
$().ready(function(){
	tb_init('a.thickbox, area.thickbox, input.thickbox');
	if (!$.browser.msie && !$.browser.mozilla){
		var userAgent = navigator.userAgent.toLowerCase();
  		if (userAgent.indexOf('mac') != -1) {
			$('a.thickbox, area.thickbox, input.thickbox').mouseover( function() {
			   this.href += '?KeepThis=true&TB_iframe=true&height=680&width=920'; 
			});	
		}
		else{
			$('a.thickbox, area.thickbox, input.thickbox').mouseover( function() {
			   this.href += '?KeepThis=true&TB_iframe=true&height=650&width=920'; 
			});
		}
	}
	else {
		$('a.thickbox, area.thickbox, input.thickbox').mouseover( function() {
		   this.href += '?KeepThis=true&TB_iframe=true&height=600&width=920'; 
		});
	}
});