
$(document).ready(function() {
	$('a[href^="http://"]:empty:not(.internal)')
	.attr({
		target: "_blank",
		'class': "extern"
	});

	$('a[href^="http://"]:not(.internal)')
	.attr({
		target: "_blank"
	});

	$('.hint').hint();

	$('.fbimg').fancybox();
	
	$("a#inline").fancybox({
		'overlayShow'       : true,
		'hideOnContentClick': false,
		'showCloseButton'   : true,
		'titleShow'         : false
	});

	
	//$("a.remotehelp").fancybox({ 
	//	'overlayShow'	:	true,
	//	'hideOnContentClick' : false,
	//	'showCloseButton' : true,
	//	'type' : 'inline',
	//	'titleShow'     : false
//
//	});
	
	//$("#rcform").submit(function() {
	//	var sid = $("#sid").val();
	//	
	//	if (sid == "1")
	//	{
	//		window.location = 'http://www.itstod.se/ITStod_Fjarrhjalp.exe';
	//		return false;
	//	}
	//	if (sid == "1234")
	//	{
	//		window.location = 'https://secure.logmeinrescue.com/Customer/Download.aspx?EntryID=121167067';
	//		return false;
	//	}
	//	
	//});
	$(".remotehelp").click(function(event) {
		if ($.client.os == "Mac")
		{
			event.preventDefault();
			window.location = 'http://www.itstod.se/ITStod_Fjarrhjalp_mac.zip';
			return false;
		}
	});
	
});
