﻿/* Browser Detect */
var detect = navigator.userAgent.toLowerCase();
var isSafari = (detect.indexOf('safari') != -1 ? true : false);
var isMacIE = (detect.indexOf('mac') != -1 && detect.indexOf('msie') != -1 ? true : false);
var isLinux = (detect.indexOf('linux') != -1 ? true : false);
var isUnix = (detect.indexOf('x11') != -1 ? true : false);
var isWin = (detect.indexOf('win') != -1 ? true : false);
var isMac = (detect.indexOf('mac') != -1 ? true : false);

$(document).ready(function() {
    $(document).pngFix();
}); 

document.write('<style type="text/css">body{display:none}</style>');
jQuery(function($) {
    $('body').css('display', 'block');
});

$(function() {

	$("#loginSection").dialog({
		bgiframe: true,
		autoOpen: false,
		resizable: false,
		height: 140,
		width: 480,
		modal: true
	});
		
	$('#open-login').click(function() {
		$('#loginSection').dialog('open');
	});
});

// set up the font
Cufon.replace('h1', { fontFamily: 'Helvetica Neue LT Std', fontWeight: 'normal' });
Cufon.replace('h2', { fontFamily: 'Helvetica Neue LT Std', fontWeight: 'bold' });
Cufon.replace('h5', { fontFamily: 'HelveticaNeueLT Com 63 MdEx', fontSize: '11px' });

function selectCategory(catId) {
    $("#categoryContainer > div").hide();
    $("#categories > li > div").removeClass('active');
    $('#' + catId).show();
    $('#arrow-' + catId).addClass('active');
}