(function ($) {
	$.fn.vAlign = function(offset) {
		return this.each(function(i){
			var h = $(this).height();
			var oh = $(this).outerHeight();
			var mt = (h + (oh - h)) / 2;
			var displace = offset + mt;
			$(this).css("margin-top", "-" + displace + "px");
			$(this).css("top", "50%");
		});
	};
})(jQuery);
$(function() {
	$("#wrapper").vAlign(25);
	// Reject unsupported browsers
	/* Supported browsers:
		FF 3, 3.5+
		IE 7, 8+
		Chrome 4, 5, 6+
		Safari 3, 4, 5+
		Opera 10+
	*/
	$.reject({
		display: ['firefox', 'chrome', 'msie', 'safari'],
		browserInfo: {
			firefox: {
				text: 'Firefox'
			},
			chrome: {
				text: 'Google Chrome'
			},
			msie: {
				text: 'Internet Explorer'
			},
			safari: {
				text: 'Apple Safari'
			}
		},
		imagePath: '/wp-content/themes/b-resaleshop/images/browsers/',
		reject: {
			msie: false, msie5: true, msie6: true, msie7: false, msie8: false, // MSIE Flags
            firefox: false, firefox1: true, firefox2: true,firefox3: false, // Firefox Flags
            konqueror: true,
            chrome: false, chrome1: true, chrome2: true, chrome3: true, chrome4: false, chrome5: false,// Chrome Flags (Global, 1-4) 
            safari: false, safari2: true, safari3: true, safari4: false, // Safari Flags (Global, 1-4) 
            opera: false, opera8: true, opera9: false, opera10: false,
            unknown: false // Unknown covers everything else 
		},
		closeCookie: true, 	// Only show once per session
		cookieSettings: {
			expires: 0		// Expires after current session
		}
	});
});

