$('document').ready( function () {

	/** SUBMENU **/
	$('a.submenu, a.submenu-on, a.submenu-subs, a.submenu-subs-on, a.submenu-subs-show').bind('focus',
		function () {
			$(this).blur();
		}
	);
	
	$('a.submenu-subs').hide();
	
	$('a.submenu, a.submenu-on').click( function () {
		var itemname = 'item'+ $(this).attr('name');

		$('a.submenu, a.submenu-on').each( function (i) {
			if (itemname != 'item'+ $(this).attr('name') || $(this).attr('class') == 'submenu-on') {
				$(this).removeClass('submenu-on');
				$(this).addClass('submenu');
			} else {
				$(this).removeClass('submenu');
				$(this).addClass('submenu-on');
			}
		});
	
		$('a.submenu-subs, a.submenu-subs-on, a.submenu-subs-show').each( function (i) {
			if (itemname == $(this).attr('name')) {
				$(this).toggle();
			} else {
				$(this).hide();
			}
		});
	});

	// Run Login - see webtemplates
	$('input[@type=button]#btnLogin').click( function () {
		var fdata = $('#loginForm input').serialize();
		$.post('xmlhttp/login.php', fdata, function (data) {
			if (data) {
				alert(data);
			} else {
				window.location.href = 'category.php?categoryID=120';
			}
		});
	});

	$('#cartHolder').load('xmlhttp/cart.php');
	$('#cartTop').load('xmlhttp/carttop.php');
});

/** 
 * NON JQUERY METHODS 
 *
 */
 
function winpop(win)
{
	bakom=window.open(win, "bakom", "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=500,height=595");
	bakom.focus();
}
function custompop(url, width, height, status, menu) {
   win = window.open(url, 'profile_popup', 'toolbar=no,location=no,directories=no,status=' + status +  ',menubar=' + menu + ',scrollbars=yes,resizable=yes,copyhistory=no,width=' + width + ',height=' + height);
   win.focus();
}

//changes main image on product page
function changeProductMainPicture( filename, imageID, pos, totalthumbs ) {
	var ih = '<a href="javascript:custompop(\'productimage.php?imageID=' + imageID + '\', 640, 480, \'no\', \'no\')"><img alt="Klicka f?r st?rre bild" align="center" src="webimages/' + filename + '" width="224" border="0" alt="" id="productImageLarge" class="productimage"></a>';
	var largeImageTD = document.getElementById('productImageLargeTD');
	largeImageTD.innerHTML = ih;

	resetThumbnails( totalthumbs );
	activateThumbnail( pos, true );
}

//resets class names for thumbnails on product page
function resetThumbnails( totalthumbs ) {
	for (i=0; i<totalthumbs; i++) {
		activateThumbnail( i, false );
	}
}

//sets class name for a specific thumbnail on product page
function activateThumbnail( pos, mode ) {
	var thumbnail = document.getElementById('thumbnailBox' + pos);
	var imgThumbnail = document.getElementById('thumbnailImage' + pos);

	if (mode) {
		thumbnail.className='productImageThumbnail-selected';
		imgThumbnail.className='productImageThumbnail-selected';
	} else {
		thumbnail.className='productImageThumbnail';
		imgThumbnail.className='productImageThumbnail';
	}
}

function showFinans (showDiv) {
	if (! showDiv) {
		$('#finans').hide();
	} else {
		$('#finans').show();
	}
}

