var autoDimensions=true;
function isIE()
{
	return /msie/i.test(navigator.userAgent) && !/opera/i.test(navigator.userAgent);
}
if(isIE())
{
	autoDimensions=false;
}
$(document).ready(function() {
/*
*   Examples - images
*/

$("a#fancy_content_selector").fancybox({
	'titleShow'     : false,
	'width'			: 850,
	'height'		: 500,
	'cyclic'		: false,
	'showNavArrows'	: false,
	'autoDimensions': autoDimensions,
	'type'			: 'iframe'
});
$("a#fancy_content_selector2").fancybox({
	'titleShow'     : false,
	'width'			: 700,
	'height'		: 500,
	'cyclic'		: false,
	'showNavArrows'	: false,
	'scrolling'		: 'no',
	'autoDimensions': autoDimensions,
	'type'			: 'ajax'
});
$("a#fancy_content_selector3").fancybox({
	'titleShow'     : false,
	'width'			: 770,
	'height'		: 650,
	'cyclic'		: false,
	'showNavArrows'	: false,
	'scrolling'		: 'auto',
	'autoDimensions': false,
	'type'			: 'ajax'
});
$("a#fancy_content_selector4").fancybox({
	'titleShow'     : false,
	'width'			: 300,
	'height'		: 100,
	'cyclic'		: false,
	'showNavArrows'	: false,
	'autoDimensions': autoDimensions,
	'type'			: 'iframe'
});
$("a#fancy_content_selector5").fancybox({
	'titleShow'     : false,
	'width'			: 1000,
	'height'		: 500,
	'cyclic'		: false,
	'showNavArrows'	: false,
	'autoDimensions': autoDimensions,
	'type'			: 'iframe'
});

});


