$(document).ready(function() {
	$("a#inline").fancybox({
		'hideOnContentClick': true
	});
	$("a.selectType").fancybox({
		'width': 400,
		'height': 150,
		'transitionIn' : 'none',
		'transitionOut' : 'none',
		'type' : 'iframe'
	});
	$("a#selectType").fancybox({
		'width': 400,
		'height': 150,
		'transitionIn' : 'none',
		'transitionOut' : 'none',
		'type' : 'iframe'
	});

	if (self.document.location.hash.substring(1) == 'selecttype')
		$('a#selectType').trigger('click');
});

