// JavaScript Document
/*! jQuery v1.7.1 jquery.com | jquery.org/license */
$(function(){
	/*
	alert("nu funkar jQuery");
	for (var i=0;10>i;i++) {
		
		var div = $("<div/>").text("det här är div:"+i).addClass("style1");
	
		$("body").append(div);
		
		alert("hej: "+i);
	}
	*/
	
	
	$(".popupButton").click(function() {
		$(this).parent().parent().find(".popupContainer").show();
		$(this).parent().parent().find(".popupContainer").animate({
			opacity:1
		},1000);
	});
	$(".popupContainer .headerContainer .close").click(function() {
		$(this).parent().parent().animate({
			opacity:0
		},1000,function() {
			$(this).hide();
		});
	});
});
