/*

--------------------------------------------------------->8---

AUTHOR		g madison / ohsoso.com
CLIENT		frida ovland
VERSION		1.1 switch to jquery
DATE		110302

--------------------------------------------------------------

*/

document.documentElement.className += " js";

$(document).ready(function(){

	// HIDE INITIALLY
		
	$('img').hide();
	$('img').one('load', function(){
			$(this).fadeTo(400, 1);
	})
	.each(function(){
			if(this.complete) $(this).trigger('load');
	});

	// INFO VIEW
	
	$('#toggle').click(function(){
//			$('#infotxt').slideToggle(400);
			$('#infotxt').animate({width:'toggle'}, 400);
	});

	$('#back').click(function(){
			$('html,body').animate({scrollLeft: 0}, 400);
	});

	// ADMIN NEW CATEGORY

	$('#txtcat').change(function(){
			if ($(this).val() == 'new') {
					$('#newcat').show();
			}
			else {
					$('#newcat').hide();
			}
	});
	
return false;

});
/* window.addEvent('domready', function() {

	new SmoothScroll({duration:400}, window);
  
	var myHorizontalSlide = new Fx.Slide('infotxt', {mode: 'horizontal', duration: 400});

//	myHorizontalSlide.hide();

	$('toggle').addEvent('click', function(e){
		e.stop();
		myHorizontalSlide.toggle();
	});


});

function checkForOther(obj){
	var txt = document.getElementById("newcat");
	if (obj.value == "new"){
		txt.style.display = "inline";
		}
		else {
		txt.style.display = "none";
		}
}
*/
