var $j = jQuery.noConflict();


$j(function()
{

	$j('.expandEdition').click(function(e)
	{
		//alert("hi");
		$j(this).toggleClass('expanded');

		$j(this).next('.expandedEdition').slideToggle('fast');


	});

	$j('.boxeditionname').click(function(e)
	{
		var id = $j(this).attr('rel');
		$j('#ajaxContentContainer').load('/tidningclean?id='+id, function(e)
		{

		});

	});

	var hasReference = $j('.referencename').size();
	$j(document).scroll(function(e)
	{
		if (hasReference)
		{
			var scrollTop = $j(document).scrollTop() + "";
			scrollTop = parseInt(scrollTop.replace("px",""));
			$j('#referenceContentContainer').css('top',scrollTop+170);
		}
	});

	$j('.referencename').bind('click',function(e)
	{
		var id = $j(this).attr('rel');
		$j('#referenceContentContainer img').fadeOut('fast');
		$j('#referenceContentContainer').show();
		$j('#referenceContentContainer').load('/referensclean?id='+id,function(e)
		{
			$j('#referenceContentContainer img').fadeIn('fast');
		});
	});

	$j('.pkgprice').click(function(e){
		var id = $j(this).attr('rel');
		$j('#ajaxContentContainer').load('/paketpris?id='+id, function(e)
		{

		});
	});

	$j('.utgivningtable td').hover(function(e){
		$j('.utgivningspuff').fadeIn('slow');
	},
	function(e)
	{

	});
	$j('.utgivningsdatum2012').hover(function(e){

	},
	function(e)
	{
		$j('.utgivningspuff').fadeOut('slow');
	});

});
