function fixDottedLinksOutline(domChunk) { $(domChunk).focus(function(){$(this).blur();});}

$(document).ready(function(){

	$('INPUT[title]').focus(
		function() {
			var obj = $(this).get(0);
			if(obj.value == $(this).attr('title')) { obj.value = ''; }
		}
	);

	$('INPUT[title]').blur(
		function() {
			var obj = $(this).get(0);
			if(obj.value == '') { obj.value = $(this).attr('title'); }
		}
	);
	
	$(function() { $('.SidebarBox').swSidebarBox({ iTop:90, iLeft:-300, elmButton:'.SidebarBox .BoxButton' }); });
	DocumentReady(document);

});

function catalogPreview(action, lang){
		
	if(sStatusPdf == action) return false;
	
	if(lang=='FR'){	var pdfHtml = '<object style="width:618px;height:437px" ><param name="movie" value="http://static.issuu.com/webembed/viewers/style1/v1/IssuuViewer.swf?mode=embed&amp;layout=http%3A%2F%2Fskin.issuu.com%2Fv%2Flight%2Flayout.xml&amp;showFlipBtn=true&amp;documentId=100922155201-a4ec8ecc269c40a08de6b09ae3d2c5ba&amp;docName=catarjuniorfrance&amp;username=softway&amp;loadingInfoText=Catalogue%202010&amp;et=1285171407990&amp;er=22" /><param name="allowfullscreen" value="true"/><param name="menu" value="false"/><embed src="http://static.issuu.com/webembed/viewers/style1/v1/IssuuViewer.swf" type="application/x-shockwave-flash" allowfullscreen="true" menu="false" style="width:618px;height:437px" flashvars="mode=embed&amp;layout=http%3A%2F%2Fskin.issuu.com%2Fv%2Flight%2Flayout.xml&amp;showFlipBtn=true&amp;documentId=100922155201-a4ec8ecc269c40a08de6b09ae3d2c5ba&amp;docName=catarjuniorfrance&amp;username=softway&amp;loadingInfoText=Catalogue%202010&amp;et=1285171407990&amp;er=22" /></object>';}
	else {var pdfHtml = '<object style="width:618px;height:408px" ><param name="movie" value="http://static.issuu.com/webembed/viewers/style1/v1/IssuuViewer.swf?mode=embed&amp;layout=http%3A%2F%2Fskin.issuu.com%2Fv%2Flight%2Flayout.xml&amp;showFlipBtn=true&amp;documentId=100420154235-de23eb5f8a9245b8a34ba129ff191ef9&amp;docName=catalogo_final&amp;username=softway&amp;loadingInfoText=Cat%C3%A1logo%202010&amp;et=1271781533793&amp;er=3" /><param name="allowfullscreen" value="true"/><param name="menu" value="false"/><embed src="http://static.issuu.com/webembed/viewers/style1/v1/IssuuViewer.swf" type="application/x-shockwave-flash" allowfullscreen="true" menu="false" style="width:618px;height:408px" flashvars="mode=embed&amp;layout=http%3A%2F%2Fskin.issuu.com%2Fv%2Flight%2Flayout.xml&amp;showFlipBtn=true&amp;documentId=100420154235-de23eb5f8a9245b8a34ba129ff191ef9&amp;docName=catalogo_final&amp;username=softway&amp;loadingInfoText=Cat%C3%A1logo%202010&amp;et=1271781533793&amp;er=3" /></object>';}
	
	switch(action){
		case 'show':
			sStatusPdf = 'show';
			$('.CatalogoFlashContainer').removeClass('Hidden');
			$('.CatalogoFlashContainer').stop(true,false).animate({ 
				height: "442px"
			}, 500, 'sineEaseOut', function(){
				$('#pdfContent').html(pdfHtml);
			});
		break;
		case 'hide':
			sStatusPdf = 'hide';
			$('.CatalogoFlashContainer').stop(true,false).animate({ 
				height: "1px"
			}, 200, 'sineEaseOut', function(){
				$('#pdfContent').html('');	
			});
			$('.CatalogoFlashContainer').addClass('Hidden');
		break;
		default: return false; break;
	}

	return false;
}


//----------------------
// CYCLE
//----------------------
function DocumentReady(obj) {
	$(document).ready(function() {
		$('.CycleContainer').cycle({
			fx:		'scrollHorz', 
			timeout: 5500,
			pager:  '.PhotoNavigation'
			}); 
		$('.CycleContainer').removeClass('Hidden');});
}
