var ie = false;
if (jQuery.browser.msie) {
	ie = true;
}

function resizing()
{
	w = $(document).width();
	if(w > 1400)
	{
		$('#tab').width(1370);
		$('#b').css({'padding':'11px 0px 35px 0px'});
	}
	else
	{
		$('#tab').width("100%");
		$('#b').css({'padding':'11px 30px 35px 30px'});
	}
}


$(document).ready(function(){
	resizing();
	$('body').pngFix( );

	$(".fancypopup a").fancybox();
	$('.c_col a').each(function(){
		link = $(this).attr('href');
//		if( ($(this).attr("target")) && (link.indexOf('.jpg') > 0) ) $(this).lightbox();
		if( ($(this).attr("target")) && (link.indexOf('.jpg') > 0) ) $(this).fancybox();
	});

});



$(window).resize(function(){
	resizing();
});
