$(function(){$('#getInspired .table li').each(function(){var obj=$(this);obj.find('a.addToFaves').click(addToFavesClick);obj.find('a.emailFriend').click(emailFriendClick);});$('#getInspired .select').unbind('click').click(function(){var ddID='#'+$(this).next().attr('id');var dd=$(ddID);var pos=$(this).position();var height=dd.children().length*29;dd.show().css({left:pos.left+'px',top:(pos.top+31)+'px'});dd.find('a').click(function(){var active=$(this).parents('ul').prev();active.html($(this).html());$(this).parent().addClass('active');dd.hide();});$(this).mouseout(function(){dd.animate({opacity:'1'},500,function(){dd.hide();});});dd.mouseenter(function(){dd.stop();});dd.mouseleave(function(){dd.hide();});return false;});});var addToFavesClick=function(){var id=$(this).parent().attr('class');window.location=root+"/designs/addToFavorites/"+id;return false;}
var emailFriendClick=function(){var link=$(this);$('body').append(emailFriendHTML);var border=$('#emailAFriendBorder');var content=$('#emailAFriend');var img=link.parent().find('img').attr('src');var newimgPath='http://www.eidialush.com'+img;content.find('img').attr('src',newimgPath);$('#emailFrom').focus();$('html,body').animate({scrollTop:0},500);content.find('.closeLayer').click(function(){content.add(border).fadeOut('fast',function(){$(this).remove();});return false;});content.find('.sendIt').click(function(){var id=link.parent().attr('class');var title=link.parent().find('span span a').html();var from=$('#emailFrom').val();var to=$('#emailTo').val();var image=$('#emailAFriend .emailContents img').attr('src');var message=$('#emailFriendMessage').val();$.post(root+"/contactForms/emailAFriend",{id:id,title:title,from:from,to:to,image:image,message:message},function(data){$('#emailAFriendBorder').add($('#emailAFriend')).fadeOut('fast',function(){$(this).remove();$('#flashMessage').remove();$('#wrap .content').prepend('<div class="message" id="flashMessage">Email Sent</div>');});});});return false;}