/* CORE JS - BLANCARRE.COM - FEB_2010-ONEPIXEL */

/*  JQUERY  */

/* ---- colorbox ----
			$(document).ready(function($){		
			$(".colorbox").colorbox({
					//width: 980,
					//height: 699
					});
						//$(".youtube").colorbox({iframe:true, width:650, height:550});
						//$(".iframe").colorbox({width:"80%", height:"80%", iframe:true});
						//$(".inline").colorbox({width:"50%", inline:true, href:"#inline_example1"});
		});
*/

/* SUPERSIZED IMAGES */
			$(document).ready(function($){
					$.fn.supersized.options = {  
							startwidth: 960,  
							startheight: 768,
							vertical_center: 1,
							slideshow: 1,
							navigation: 1,
							transition: 1, //0-None, 1-Fade, 2-slide top, 3-slide right, 4-slide bottom, 5-slide left
							pause_hover: 0,
							slide_counter: 0,
							slide_captions: 0,
							slide_interval: 100000000000000  
						};
				        $('#supersize').supersized(); 
			});
/* MENU ROLLOVER 
			$(document).ready(function(){
			$('.navtext').hide();
			$('#nav li').show(
					function()
					        {
					        if ( $(this).hasClass('active') )
							$('.navtext', $(this)).show();
					        }
				);
			$('#nav li:not(.active)').hover(
			        function()
			        {
			                $('.navtext', $(this)).show();
							$('.navtext', $('li.active')).hide();
			        },
							function()
			        {
							$('.navtext', $(this)).hide();
							$('.navtext', $('li.active')).show();
			        }
			    );
			
			});
*/
/* end jquery */
