﻿var $j = jQuery.noConflict();

$j(document).ready(function() {
	$j('a.show_flash').fancyZoom({directory:'/includes/fancyzoom/images'});
	
	$j("div#contentToggleContainer a").click(function() {
		if($j("span#show_name").text() == 'Dölj') {
			$j("span#show_name").text('Visa');
		} else {
			$j("span#show_name").text('Dölj');
		}
		$j("div#contentArea").toggle();
	});
});
