jQuery.noConflict();
 
jQuery(document).ready(function(){
								
	// show all js-depending obj:
    jQuery(".js").show();								
	
	// init lightbox
    jQuery('a[rel*=lightbox]').lightbox();
	
});



function open_win(url,name,features) {
  win = window.open(url,name,features);
  win.focus();
}

